:root {
    --primary-color: #5e285e;
    --secondary-color: #e6d7e6;
    --text-color: #333;
    --white: #fff;
    --gray: #ccc;
    --black: #000;
    --green: #28a745;
    --red: #dc3545;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 1rem;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
}

.btn-client-zone {
    background-color: var(--black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

main {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

h1 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.service-info {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.team-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 1rem;
}

.team-details h2 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-icons {
    margin-left: auto;
}

.icon-circle {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--black);
    color: var(--white);
    text-align: center;
    line-height: 40px;
    margin-left: 0.5rem;
}

.calendar {
    background-color: var(--gray);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 2rem;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.btn-nav {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

#calendar-table {
    width: 100%;
    border-collapse: collapse;
}

#calendar-table th,
#calendar-table td {
    text-align: center;
    padding: 0.5rem;
}

#calendar-table td.active {
    background-color: var(--black);
    color: var(--white);
    border-radius: 50%;
}

.time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.time-slot {
    background-color: var(--black);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
}

.time-slot.active {
    background-color: var(--primary-color);
}

.doctor-availability {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.doctor {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--gray);
    padding: 1rem;
    border-radius: 10px;
    width: 100%;
}

.doctor-info {
    display: flex;
    align-items: center;
}

.doctor-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
}

.availability {
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.availability i.available {
    color: var(--green);
    margin-right: 0.5rem;
}

.availability i.unavailable {
    color: var(--red);
    margin-right: 0.5rem;
}

.service-types {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.service-type {
    background-color: var(--gray);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    width: 30%;
}

.service-type i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.btn-confirm {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

footer {
    background-color: var(--primary-color);
    color: var (--white);
    padding: 2rem;
    display: flex;
    justify-content: space-between;
}

.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
}

.social-icons a {
    color: var(--white);
    margin-right: 0.5rem;
    font-size: 1.2rem;
}
